home *** CD-ROM | disk | FTP | other *** search
/ ETO Development Tools 1 / ETO Development Tools 1.iso / Essentials / MacApp Documentation / Class&Method Reference (stack) / MacApp 2.0 Reference / MacApp 2.0 Reference / card_5059.txt < prev    next >
Encoding:
Text File  |  1990-07-24  |  23.7 KB  |  2,429 lines

  1. -- card: 5059 from stack: in.0 Reference
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 5218
  5. -- name: Globals
  6.  
  7.  
  8. -- part 34 (button)
  9. -- low flags: 00
  10. -- high flags: 0001
  11. -- rect: left=480 top=17 right=44 bottom=508
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 11839 / 11839
  14. -- text alignment: 1
  15. -- font id: 0
  16. -- text size: 12
  17. -- style flags: 0
  18. -- line height: 16
  19. -- part name: FIND
  20. ----- HyperTalk script -----
  21. on mouseUp
  22.   answer "What are you looking for?" with "Routine" or"Variable" or "Constant"
  23.   if it is "Routine"
  24.   then
  25.   ask "Find what Routine?"
  26.   if it is not empty
  27.   then
  28.   find chars it in bg fld Routines
  29. end if
  30. else
  31.   if it is "Constant"
  32.   then
  33.   ask "Find what Constant?"
  34.   if it is not empty
  35.   then
  36.   find chars it in bg fld Constants
  37. end if
  38. else
  39.   if it is "Variable"
  40.   then ask "Find what Variable?"
  41.   if it is not empty
  42.   then find chars it in bg fld Variables
  43. end if
  44. end if
  45. if the Result is "not found"
  46. then answer "Sorry, I couldn‚Äôt find it." with OK
  47. end mouseUp
  48.  
  49. on mousewithin
  50.   set the icon of me to "28221"
  51.   wait 8
  52.   set the icon of me to "11839"
  53.   wait 8
  54. end mousewithin
  55.  
  56.  
  57.  
  58.  
  59. -- part 36 (field)
  60. -- low flags: 81
  61. -- high flags: 0007
  62. -- rect: left=350 top=62 right=341 bottom=511
  63. -- title width / last selected line: 0
  64. -- icon id / first selected line: 0 / 0
  65. -- text alignment: 0
  66. -- font id: 128
  67. -- text size: 10
  68. -- style flags: 0
  69. -- line height: 17
  70. -- part name: constantsNums
  71. ----- HyperTalk script -----
  72. on mouseUp
  73.   set cursor to watch
  74.   global lineNum,startTicks, tilChar,key
  75.   put the ticks into startTime
  76.  
  77.   put clickLine() into lineNum
  78.   if line lineNum of me is not empty then
  79.     put word 1 of line lineNum of me into key
  80.     put offset(return & line lineNum of target & return,target)+1 into tilChar
  81.     select char tilChar to length(line lineNum of target)+tilChar of target
  82.     if DoubleClick() is true
  83.     then go card key of bg constants
  84.   else go card key of bg constants
  85. end if
  86. put(the ticks - startTime) /60 && "seconds"
  87. end mouseup
  88. ------------------------------------------------------------------------
  89.  
  90.  
  91. -- part 37 (field)
  92. -- low flags: 81
  93. -- high flags: 0007
  94. -- rect: left=179 top=62 right=341 bottom=348
  95. -- title width / last selected line: 0
  96. -- icon id / first selected line: 0 / 0
  97. -- text alignment: 0
  98. -- font id: 128
  99. -- text size: 10
  100. -- style flags: 0
  101. -- line height: 17
  102. -- part name: variablesNums
  103. ----- HyperTalk script -----
  104. on mouseUp
  105.   set cursor to watch
  106.   global lineNum, tilChar,key
  107.   put the ticks into startTime
  108.  
  109.   put clickLine() into lineNum
  110.   if line lineNum of me is not empty then
  111.     put word 1 of line lineNum of me into key
  112.     put offset(return & line lineNum of target & return,target)+1 into tilChar
  113.     select char tilChar to length(line lineNum of target)+tilChar of target
  114.     if DoubleClick() is true
  115.     then go card key of bg variables
  116.   else go card key of bg variables
  117. end if
  118. put(the ticks - startTime) /60 && "seconds"
  119. end mouseup
  120. ------------------------------------------------------------------------
  121.  
  122.  
  123. -- part 39 (field)
  124. -- low flags: 81
  125. -- high flags: 0007
  126. -- rect: left=1 top=62 right=341 bottom=177
  127. -- title width / last selected line: 0
  128. -- icon id / first selected line: 0 / 0
  129. -- text alignment: 0
  130. -- font id: 128
  131. -- text size: 10
  132. -- style flags: 0
  133. -- line height: 17
  134. -- part name: routinesNums
  135. ----- HyperTalk script -----
  136. on mouseUp
  137.   goGlobal
  138. end mouseup
  139. ------------------------------------------------------------------------
  140. --on mousewithin
  141. global lineNum, tilChar, endChar,key,cdID
  142. put lineLoc() into lineNum
  143. if line lineNum of me is not empty then
  144.   put item 1 of line lineNum of me into key
  145.   put offset(return & key & return,target)+1 into tilChar
  146.   put length(line lineNum of target)+tilChar into endChar
  147.   get word linenum of cd fld variablesNums
  148.   put it into cdID
  149. else put empty into key
  150. end mousewithin
  151.  
  152.  
  153. -- part contents for background part 2
  154. ----- text -----
  155. Globals Menu
  156.  
  157. -- part contents for card part 36
  158. ----- text -----
  159. 396
  160. 397
  161. 398
  162. 399
  163. 400
  164. 401
  165. 402
  166. 403
  167. 404
  168. 405
  169. 406
  170. 407
  171. 408
  172. 409
  173. 410
  174. 411
  175. 412
  176. 413
  177. 414
  178. 415
  179. 416
  180. 417
  181. 418
  182. 419
  183. 420
  184. 421
  185. 422
  186. 423
  187. 424
  188. 425
  189. 426
  190. 427
  191. 428
  192. 429
  193. 430
  194. 431
  195. 432
  196. 433
  197. 434
  198. 435
  199. 436
  200. 437
  201. 438
  202. 439
  203. 440
  204. 441
  205. 442
  206. 443
  207. 444
  208. 445
  209. 446
  210. 447
  211. 448
  212. 449
  213. 450
  214. 451
  215. 452
  216. 453
  217. 454
  218. 455
  219. 456
  220. 457
  221. 458
  222. 459
  223. 460
  224. 461
  225. 462
  226. 463
  227. 464
  228. 465
  229. 466
  230. 467
  231. 468
  232. 469
  233. 470
  234. 471
  235. 472
  236. 473
  237. 474
  238. 475
  239. 476
  240. 477
  241. 478
  242. 479
  243. 480
  244. 481
  245. 482
  246. 483
  247. 484
  248. 485
  249. 486
  250. 487
  251. 488
  252. 489
  253. 490
  254. 491
  255. 492
  256. 493
  257. 494
  258. 495
  259. 496
  260. 497
  261. 498
  262. 499
  263. 500
  264. 501
  265. 502
  266. 503
  267. 504
  268. 505
  269. 506
  270. 507
  271. 508
  272. 509
  273. 510
  274. 511
  275. 512
  276. 513
  277. 514
  278. 515
  279. 516
  280. 517
  281. 518
  282. 519
  283. 520
  284. 521
  285. 522
  286. 523
  287. 524
  288. 525
  289. 526
  290. 527
  291. 528
  292. 529
  293. 530
  294. 531
  295. 532
  296. 533
  297. 534
  298. 535
  299. 536
  300. 537
  301. 538
  302. 539
  303. 540
  304. 541
  305. 542
  306. 543
  307. 544
  308. 545
  309. 546
  310. 547
  311. 548
  312. 549
  313. 550
  314. 551
  315. 552
  316. 553
  317. 554
  318. 555
  319. 556
  320. 557
  321. 558
  322. 559
  323. 560
  324. 561
  325. 562
  326. 563
  327. 564
  328. 565
  329. 566
  330. 567
  331. 568
  332. 569
  333. 570
  334. 571
  335. 572
  336. 573
  337. 574
  338. 575
  339. 576
  340. 577
  341. 578
  342. 579
  343. 580
  344. 581
  345. 582
  346. 583
  347. 584
  348. 585
  349. 586
  350. 587
  351. 588
  352. 589
  353. 590
  354. 591
  355. 592
  356. 593
  357. 594
  358. 595
  359. 596
  360. 597
  361. 598
  362. 599
  363. 600
  364. 601
  365. 602
  366. 603
  367. 604
  368. 605
  369. 606
  370. 607
  371. 608
  372. 609
  373. 610
  374. 611
  375. 612
  376. 613
  377. 614
  378. 615
  379. 616
  380. 617
  381. 618
  382. 619
  383. 620
  384. 621
  385. 622
  386. 623
  387. 624
  388. 625
  389. 626
  390. 627
  391. 628
  392. 629
  393. 630
  394. 631
  395. 632
  396. 633
  397. 634
  398. 635
  399. 636
  400. 637
  401. 638
  402. 639
  403. 640
  404. 641
  405. 642
  406. 643
  407. 644
  408. 645
  409. 646
  410. 647
  411. 648
  412. 649
  413. 650
  414. 651
  415. 652
  416. 653
  417. 654
  418. 655
  419. 656
  420. 657
  421. 658
  422. 659
  423. 660
  424. 661
  425. 662
  426. 663
  427. 664
  428. 665
  429. 666
  430. 667
  431. 668
  432. 669
  433. 670
  434. 671
  435. 672
  436. 673
  437. 674
  438. 675
  439. 676
  440. 677
  441. 678
  442. 679
  443. 680
  444. 681
  445. 682
  446. 683
  447. 684
  448. 685
  449. 686
  450. 687
  451. 688
  452. 689
  453. 690
  454. 691
  455. 692
  456. 693
  457. 694
  458. 695
  459. 696
  460. 697
  461. 698
  462. 699
  463. 700
  464. 701
  465. 702
  466. 703
  467. 704
  468. 705
  469. 706
  470. 707
  471. 708
  472. 709
  473. 710
  474. 711
  475. 712
  476. 713
  477. 714
  478. 715
  479. 716
  480. 717
  481. 718
  482. 719
  483. 720
  484. 721
  485. 722
  486. 723
  487. 724
  488. 725
  489. 726
  490. 727
  491. 728
  492. 729
  493. 730
  494. 731
  495. 732
  496. 733
  497. 734
  498. 735
  499. 736
  500. 737
  501. 738
  502. 739
  503. 740
  504. 741
  505. 742
  506. 743
  507. 744
  508. 745
  509. 746
  510. 747
  511. 748
  512. 749
  513. 750
  514. 751
  515. 752
  516. 753
  517. 754
  518. 755
  519. 756
  520. 757
  521. 758
  522. 759
  523. 760
  524. 761
  525. 762
  526. 763
  527. 764
  528. 765
  529. 766
  530. 767
  531. 768
  532. 769
  533. 770
  534. 771
  535. 772
  536. 773
  537. 774
  538. 775
  539. 776
  540. 777
  541. 778
  542. 779
  543. 780
  544. 781
  545. 782
  546. 783
  547. 784
  548. 785
  549. 786
  550. 787
  551. 788
  552. 789
  553. 790
  554. 791
  555. 792
  556. 793
  557. 794
  558. 795
  559. 796
  560. 797
  561. 798
  562. 799
  563. 800
  564. 801
  565. 802
  566. 803
  567. 804
  568. 805
  569. 806
  570. 807
  571. 808
  572. 809
  573. 810
  574. 811
  575. 812
  576. 813
  577. 814
  578. 815
  579. 816
  580. 817
  581. 818
  582. 819
  583. 820
  584. 821
  585. 822
  586. 823
  587. 824
  588. 825
  589. 826
  590. 827
  591. 828
  592. 829
  593. 830
  594. 831
  595. 832
  596. 833
  597.  
  598.  
  599. -- part contents for card part 37
  600. ----- text -----
  601. 834
  602. 835
  603. 836
  604. 837
  605. 838
  606. 839
  607. 840
  608. 841
  609. 842
  610. 843
  611. 844
  612. 845
  613. 846
  614. 847
  615. 848
  616. 849
  617. 850
  618. 851
  619. 852
  620. 853
  621. 854
  622. 855
  623. 856
  624. 857
  625. 858
  626. 859
  627. 860
  628. 861
  629. 862
  630. 863
  631. 864
  632. 865
  633. 866
  634. 867
  635. 868
  636. 869
  637. 870
  638. 871
  639. 872
  640. 873
  641. 874
  642. 875
  643. 876
  644. 877
  645. 878
  646. 879
  647. 880
  648. 881
  649. 882
  650. 883
  651. 884
  652. 885
  653. 886
  654. 887
  655. 888
  656. 889
  657. 890
  658. 891
  659. 892
  660. 893
  661. 894
  662. 895
  663. 896
  664. 897
  665. 898
  666. 899
  667. 900
  668. 901
  669. 902
  670. 903
  671. 904
  672. 905
  673. 906
  674. 907
  675. 908
  676. 909
  677. 910
  678. 911
  679. 912
  680. 913
  681. 914
  682. 915
  683. 916
  684. 917
  685. 918
  686. 919
  687. 920
  688. 921
  689. 922
  690. 923
  691. 924
  692. 925
  693. 926
  694. 927
  695. 928
  696. 929
  697. 930
  698. 931
  699. 932
  700. 933
  701. 934
  702. 935
  703. 936
  704. 937
  705. 938
  706. 939
  707. 940
  708. 941
  709. 942
  710. 943
  711. 944
  712. 945
  713. 946
  714. 947
  715. 948
  716. 949
  717. 950
  718. 951
  719. 952
  720. 953
  721. 954
  722. 955
  723. 956
  724. 957
  725. 958
  726. 959
  727. 960
  728. 961
  729. 962
  730. 963
  731. 964
  732. 965
  733. 966
  734. 967
  735. 968
  736. 969
  737. 970
  738. 971
  739. 972
  740. 973
  741. 974
  742. 975
  743. 976
  744. 977
  745. 978
  746. 979
  747. 980
  748. 981
  749. 982
  750. 983
  751. 984
  752. 985
  753. 986
  754. 987
  755. 988
  756. 989
  757. 990
  758. 991
  759. 992
  760. 993
  761. 994
  762. 995
  763. 996
  764. 997
  765. 998
  766. 999
  767. 1000
  768. 1001
  769. 1002
  770. 1003
  771. 1004
  772. 1005
  773. 1006
  774. 1007
  775. 1008
  776. 1009
  777. 1010
  778. 1011
  779. 1012
  780. 1013
  781. 1014
  782. 1015
  783. 1016
  784. 1017
  785. 1018
  786. 1019
  787. 1020
  788. 1021
  789. 1022
  790.  
  791.  
  792. -- part contents for card part 39
  793. ----- text -----
  794. 1023
  795. 1024
  796. 1025
  797. 1026
  798. 1027
  799. 1028
  800. 1029
  801. 1030
  802. 1031
  803. 1032
  804. 1033
  805. 1034
  806. 1035
  807. 1036
  808. 1037
  809. 1038
  810. 1039
  811. 1040
  812. 1041
  813. 1042
  814. 1043
  815. 1044
  816. 1045
  817. 1046
  818. 1047
  819. 1048
  820. 1049
  821. 1050
  822. 1051
  823. 1052
  824. 1053
  825. 1054
  826. 1055
  827. 1056
  828. 1057
  829. 1058
  830. 1059
  831. 1060
  832. 1061
  833. 1062
  834. 1063
  835. 1064
  836. 1065
  837. 1066
  838. 1067
  839. 1068
  840. 1069
  841. 1070
  842. 1071
  843. 1072
  844. 1073
  845. 1074
  846. 1075
  847. 1076
  848. 1077
  849. 1078
  850. 1079
  851. 1080
  852. 1081
  853. 1082
  854. 1083
  855. 1084
  856. 1085
  857. 1086
  858. 1087
  859. 1088
  860. 1089
  861. 1090
  862. 1091
  863. 1092
  864. 1093
  865. 1094
  866. 1095
  867. 1096
  868. 1097
  869. 1098
  870. 1099
  871. 1100
  872. 1101
  873. 1102
  874. 1103
  875. 1104
  876. 1105
  877. 1106
  878. 1107
  879. 1108
  880. 1109
  881. 1110
  882. 1111
  883. 1112
  884. 1113
  885. 1114
  886. 1115
  887. 1116
  888. 1117
  889. 1118
  890. 1119
  891. 1120
  892. 1121
  893. 1122
  894. 1123
  895. 1124
  896. 1125
  897. 1126
  898. 1127
  899. 1128
  900. 1129
  901. 1130
  902. 1131
  903. 1132
  904. 1133
  905. 1134
  906. 1135
  907. 1136
  908. 1137
  909. 1138
  910. 1139
  911. 1140
  912. 1141
  913. 1142
  914. 1143
  915. 1144
  916. 1145
  917. 1146
  918. 1147
  919. 1148
  920. 1149
  921. 1150
  922. 1151
  923. 1152
  924. 1153
  925. 1154
  926. 1155
  927. 1156
  928. 1157
  929. 1158
  930. 1159
  931. 1160
  932. 1161
  933. 1162
  934. 1163
  935. 1164
  936. 1165
  937. 1166
  938. 1167
  939. 1168
  940. 1169
  941. 1170
  942. 1171
  943. 1172
  944. 1173
  945. 1174
  946. 1175
  947. 1176
  948. 1177
  949. 1178
  950. 1179
  951. 1180
  952. 1181
  953. 1182
  954. 1183
  955. 1184
  956. 1185
  957. 1186
  958. 1187
  959. 1188
  960. 1189
  961. 1190
  962. 1191
  963. 1192
  964. 1193
  965. 1194
  966. 1195
  967. 1196
  968. 1197
  969. 1198
  970. 1199
  971. 1200
  972. 1201
  973. 1202
  974. 1203
  975. 1204
  976. 1205
  977. 1206
  978. 1207
  979. 1208
  980. 1209
  981. 1210
  982. 1211
  983. 1212
  984. 1213
  985. 1214
  986. 1215
  987. 1216
  988. 1217
  989. 1218
  990. 1219
  991. 1220
  992. 1221
  993. 1222
  994. 1223
  995. 1224
  996. 1225
  997. 1226
  998. 1227
  999. 1228
  1000. 1229
  1001. 1230
  1002. 1231
  1003. 1232
  1004. 1233
  1005. 1234
  1006. 1235
  1007. 1236
  1008. 1237
  1009. 1238
  1010. 1239
  1011. 1240
  1012. 1241
  1013. 1242
  1014. 1243
  1015. 1244
  1016. 1245
  1017. 1246
  1018. 1247
  1019. 1248
  1020. 1249
  1021. 1250
  1022. 1251
  1023. 1252
  1024. 1253
  1025. 1254
  1026. 1255
  1027. 1256
  1028. 1257
  1029. 1258
  1030. 1259
  1031. 1260
  1032. 1261
  1033. 1262
  1034. 1263
  1035. 1264
  1036. 1265
  1037. 1266
  1038. 1267
  1039. 1268
  1040. 1269
  1041. 1270
  1042. 1271
  1043. 1272
  1044. 1273
  1045. 1274
  1046. 1275
  1047. 1276
  1048. 1277
  1049. 1278
  1050. 1279
  1051. 1280
  1052. 1281
  1053. 1282
  1054. 1283
  1055. 1284
  1056. 1285
  1057. 1286
  1058. 1287
  1059. 1288
  1060. 1289
  1061. 1290
  1062. 1291
  1063. 1292
  1064. 1293
  1065. 1294
  1066. 1295
  1067. 1296
  1068. 1297
  1069. 1298
  1070. 1299
  1071. 1300
  1072. 1301
  1073. 1302
  1074. 1303
  1075. 1304
  1076. 1305
  1077. 1306
  1078. 1307
  1079. 1308
  1080. 1309
  1081. 1310
  1082. 1311
  1083. 1312
  1084. 1313
  1085. 1314
  1086. 1315
  1087. 1316
  1088. 1317
  1089. 1318
  1090. 1319
  1091. 1320
  1092. 1321
  1093. 1322
  1094. 1323
  1095. 1324
  1096. 1325
  1097. 1326
  1098. 1327
  1099. 1328
  1100. 1329
  1101. 1330
  1102. 1331
  1103. 1332
  1104. 1333
  1105. 1334
  1106. 1335
  1107. 1336
  1108. 1337
  1109. 1338
  1110. 1339
  1111. 1340
  1112. 1341
  1113. 1342
  1114. 1343
  1115. 1344
  1116. 1345
  1117. 1346
  1118. 1347
  1119. 1348
  1120. 1349
  1121. 1350
  1122. 1351
  1123. 1352
  1124. 1353
  1125. 1354
  1126. 1355
  1127. 1356
  1128. 1357
  1129. 1358
  1130. 1359
  1131. 1360
  1132. 1361
  1133. 1362
  1134. 1363
  1135. 1364
  1136. 1365
  1137. 1366
  1138. 1367
  1139. 1368
  1140. 1369
  1141. 1370
  1142. 1371
  1143. 1372
  1144. 1373
  1145. 1374
  1146. 1375
  1147. 1376
  1148. 1377
  1149. 1378
  1150. 1379
  1151. 1380
  1152. 1381
  1153. 1382
  1154. 1383
  1155. 1384
  1156. 1385
  1157. 1386
  1158. 1387
  1159. 1388
  1160. 1389
  1161. 1390
  1162. 1391
  1163. 1392
  1164. 1393
  1165. 1394
  1166. 1395
  1167. 1396
  1168. 1397
  1169. 1398
  1170. 1399
  1171. 1400
  1172. 1401
  1173. 1402
  1174. 1403
  1175. 1404
  1176. 1405
  1177. 1406
  1178. 1407
  1179. 1408
  1180. 1409
  1181. 1410
  1182. 1411
  1183. 1412
  1184. 1413
  1185. 1414
  1186. 1415
  1187. 1416
  1188. 1417
  1189. 1418
  1190. 1419
  1191. 1420
  1192. 1421
  1193. 1422
  1194. 1423
  1195. 1424
  1196. 1425
  1197. 1426
  1198. 1427
  1199. 1428
  1200. 1429
  1201. 1430
  1202. 1431
  1203. 1432
  1204. 1433
  1205. 1434
  1206. 1435
  1207. 1436
  1208. 1437
  1209. 1438
  1210. 1439
  1211. 1440
  1212. 1441
  1213. 1442
  1214. 1443
  1215. 1444
  1216. 1445
  1217. 1446
  1218. 1447
  1219. 1448
  1220. 1449
  1221. 1450
  1222. 1451
  1223. 1452
  1224. 1453
  1225. 1454
  1226. 1455
  1227. 1456
  1228. 1457
  1229. 1458
  1230. 1459
  1231. 1460
  1232. 1461
  1233. 1462
  1234. 1463
  1235. 1464
  1236. 1465
  1237. 1466
  1238. 1467
  1239. 1468
  1240. 1469
  1241. 1470
  1242. 1471
  1243. 1472
  1244. 1473
  1245. 1474
  1246. 1475
  1247. 1476
  1248. 1477
  1249. 1478
  1250. 1479
  1251. 1480
  1252. 1481
  1253. 1482
  1254. 1483
  1255. 1484
  1256. 1485
  1257. 1486
  1258. 1487
  1259. 1488
  1260. 1489
  1261. 1490
  1262. 1491
  1263. 1492
  1264. 1493
  1265. 1494
  1266. 1495
  1267. 1496
  1268. 1497
  1269. 1498
  1270. 1499
  1271. 1500
  1272. 1501
  1273. 1502
  1274. 1503
  1275. 1504
  1276. 1505
  1277. 1506
  1278. 1507
  1279. 1508
  1280. 1509
  1281. 1510
  1282. 1511
  1283. 1512
  1284. 1513
  1285. 1514
  1286. 1515
  1287. 1516
  1288. 1517
  1289. 1518
  1290. 1519
  1291. 1520
  1292.  
  1293.  
  1294. -- part contents for background part 9
  1295. ----- text -----
  1296. gAlwaysTrackCursor
  1297. pDebugWindow
  1298. pDebugView
  1299. gApp1MemList
  1300. gApp2MemList
  1301. gAppDone
  1302. gApplication
  1303. gApplicationRefNum
  1304. gApplicationStyle
  1305. gAskAboutAlloc
  1306. gAskFailure
  1307. gAssumeFocused
  1308. gBoolString
  1309. gBreaksPenState
  1310. gBusyTempRgn
  1311. gCancelAllPrinting
  1312. gChooserOK
  1313. gClickCount
  1314. gClipClaimed
  1315. gClipOrphanage
  1316. gClipUndoView
  1317. gClipView
  1318. gClipWindow
  1319. gClipWrittenToDeskScrap
  1320. gCodeRefNum
  1321. gCodeSegs
  1322. gConfiguration
  1323. gCouldPrint
  1324. gCreateWithTemplates
  1325. gCurrPrintHandler
  1326. gCursorRgn
  1327. gDeadStripSuppression
  1328. gDebugPrinting
  1329. gDefClikLoopProc
  1330. gDocList
  1331. gDrawingPictScrap
  1332. gDrawingPictScrapView
  1333. gEnableDoubleBuffering
  1334. gErrorParm3
  1335. gEventLevel
  1336. gExperimenting
  1337. gFakeWindow
  1338. gFieldToStrRtn
  1339. gFileCount
  1340. gFinderHPrint
  1341. gFinderPrinting
  1342. gFocusedView
  1343. gFreeWindowList
  1344. gGotClipType
  1345. gGZPurgeNotify
  1346. gHeadCohandler
  1347. gIdlePhase
  1348. gInBackground
  1349. gInFilter
  1350. gInhibitNestedHandling
  1351. gInitialized
  1352. gIntenseDebugging
  1353. gIsLoadedSeg
  1354. gIsResidentSeg
  1355. gJobPrintHandler
  1356. gLastClickPart
  1357. gLastDeskAcc
  1358. gLastMsePt
  1359. gLastUpTime
  1360. gLongOffset
  1361. gLowSpaceInterval
  1362. gMacAppAlertFilter
  1363. gMainEventMask
  1364. gMainFileType
  1365. gMastReport
  1366. gMATextBoxTE
  1367. gMaxLockedRsrc
  1368. gMaxStackDepth
  1369. gMBarDisplayed
  1370. gMBarHeight
  1371. gMBarHierarchical
  1372. gMBarNotDisplayed
  1373. gMemMgtBreak
  1374. gMenusAreSetup
  1375. gNewScrapStuff
  1376. gNextSpaceMsg
  1377. gNoChanges
  1378. gNullPrintHandler
  1379. gNumUntitled
  1380. gOldChooserFlag
  1381. gOldScrapStuff
  1382. gOrthogonal
  1383. gPageOffset
  1384. gPostCondition
  1385. gPreCondition
  1386. gPrefClipType
  1387. gPrintHandler
  1388. gPrinting
  1389. gRedrawMenuBar
  1390. gReportEvt
  1391. gReportInfo
  1392. gReportMenuChoices
  1393. gReportNext
  1394. gReportTime
  1395. gRGBBlack
  1396. gRGBWhite
  1397. gRsrcCheck
  1398. gRsrcReport
  1399. gSaveFocusRec
  1400. gSegReport
  1401. gSignatureCount
  1402. gSignatureIds
  1403. gSignatures
  1404. gSingleStep
  1405. gStdHysteresis
  1406. gStdPageMargins
  1407. gStdStaggerCount
  1408. gStdWMoveBounds
  1409. gStdWScreenRect
  1410. gStdWSizeRect
  1411. gStrippedAddress
  1412. gSysMemList
  1413. gSystemStyle
  1414. gSysWindowActive
  1415. gTarget
  1416. gTEDefaultWordBreak
  1417. gTempRgn
  1418. gToolBoxInitialized
  1419. gTopHandler
  1420. gTraceIdle
  1421. gTraceSetupMenus
  1422. gTracing
  1423. gUDialogInitialized
  1424. gUGridViewInitialized
  1425. gUndoCmd
  1426. gUndoState
  1427. gUnloadAllSegs
  1428. gUPrintingInitialized
  1429. gUsedBy
  1430. gUTEViewInitialized
  1431. gVarClipPicSize
  1432. gWasTrcEnable
  1433. gWorkPort
  1434. gWResSignature
  1435. gWResType
  1436. gZeroPt
  1437. gZeroRect
  1438. gZeroVPt
  1439. gZeroVRect
  1440. pCodeReserve
  1441. pCopyright
  1442. pCurrTEView
  1443. pCursorInfo
  1444. pDifference
  1445. pETSPatch
  1446. pFi
  1447. pInvalidateRgn
  1448. pLoadSegCalledFromOwnApp
  1449. pMaxSegNum
  1450. pMemReserve
  1451. pNoOfSegments
  1452. pOKCodeReserve
  1453. pOldResFile
  1454. pPatchList
  1455. pPermAllocation
  1456. pPixelsToHighlight
  1457. pPreviousSelection
  1458. pReserveExists
  1459. pReserveShortfall
  1460. pSegLoadPatch
  1461. pSegNeedsUnloading
  1462. pSzCodeReserve
  1463. pSzMemReserve
  1464. pTEIntenseDebugging
  1465. pVisibleCells
  1466. qDebug
  1467. qDebugTheDebugger
  1468. qExperimentalAndUnsupported
  1469. qInspector
  1470. qMacApp
  1471. qNames
  1472. qNeedsColorQD
  1473. qNeedsFPU
  1474. qNeedsHierarchicalMenus
  1475. qNeedsMC68020
  1476. qNeedsMC68030
  1477. qNeedsROM128K
  1478. qNeedsScriptManager
  1479. qNeedsStyleTextEdit
  1480. qNeedsWaitNextEvent
  1481. qPerform
  1482. qRangeCheck
  1483. qTemplateViews
  1484. qTrace
  1485.  
  1486.  
  1487. -- part contents for background part 33
  1488. ----- text -----
  1489. bBoolean
  1490. bByte
  1491. bChar
  1492. bClass
  1493. bCmdNumber
  1494. bCntlAdornment
  1495. bConfigRec
  1496. bControlHandle
  1497. bDouble
  1498. bExtended
  1499. bFixed
  1500. bFontName
  1501. bGrafPtr
  1502. bHandle
  1503. bHexInteger
  1504. bHexLongInt
  1505. bHighByte
  1506. bHLState
  1507. bIDType
  1508. bInteger
  1509. bLongInt
  1510. bLowByte
  1511. bObject
  1512. bOSType
  1513. bPattern
  1514. bPoint
  1515. bPointer
  1516. bReal
  1517. bRect
  1518. bResType
  1519. bRGBColor
  1520. bRgnHandle
  1521. bScrapStuff
  1522. bSingle
  1523. bSizeDeterminer
  1524. bString
  1525. bStringHandle
  1526. bStyle
  1527. bTEHandle
  1528. bTextStyle
  1529. bTitle
  1530. bVCoordinate
  1531. bVHSelect
  1532. bVPoint
  1533. bVRect
  1534. bWindowPtr
  1535. bzCantDraw
  1536. bzCantUndo
  1537. bzClosing
  1538. bzDoFirstClick
  1539. bzDontDoFirstClick
  1540. bzHideClip
  1541. bzMakeModal
  1542. bzMakeModeless
  1543. bzQuitting
  1544. bzRedo
  1545. bzRevertAnyways
  1546. bzSaveAnyways
  1547. bzSaveAs
  1548. bzSaveCopy
  1549. bzSetLeftSysJust
  1550. bzSetRightSysJust
  1551. bzShowClip
  1552. bzUndo
  1553. bzUntitled
  1554. cAboutApp
  1555. cCantUndo
  1556. cChangePrinterStyle
  1557. cClear
  1558. cClose
  1559. cCopy
  1560. cCut
  1561. cDebugPrinting
  1562. cDebugWind
  1563. cDoFirstClick
  1564. cEditBase
  1565. cEditLast
  1566. cEditSep
  1567. cEnterMacAppDebugger
  1568. cExperimenting
  1569. cFinderNew
  1570. cFinderOpen
  1571. cFinderPrint
  1572. chBackspace
  1573. chClear
  1574. chDown
  1575. chEnd
  1576. chEnter
  1577. chEscape
  1578. chFunction
  1579. chFwdDelete
  1580. chHelp
  1581. chHome
  1582. chLeft
  1583. chPageDown
  1584. chPageUp
  1585. Chr00
  1586. Chr1F
  1587. chReturn
  1588. chRight
  1589. chSpace
  1590. chTab
  1591. chUp
  1592. cIdentifySoftware
  1593. cIntenseDebugging
  1594. cModalToggle
  1595. cMouseCommand
  1596. cNew
  1597. cNewInspectorWindow
  1598. cNewLast
  1599. cNoCommand
  1600. cOpen
  1601. cOpenLast
  1602. cPageSetup
  1603. cPaste
  1604. cPrFileBase
  1605. cPrFileMax
  1606. cPrint
  1607. cPrintOne
  1608. cPrintSpoolFile
  1609. cPrintToFile
  1610. cPrViewBase
  1611. cPrViewMax
  1612. cQuit
  1613. cReduce50
  1614. cReduceToFit
  1615. cRefreshFrontWindow
  1616. cRememberStyle
  1617. cReportEvt
  1618. cReportMenuChoices
  1619. cRevert
  1620. cSave
  1621. cSaveAs
  1622. cSaveCopy
  1623. cSelectAll
  1624. cSetSysJust
  1625. cShowBorders
  1626. cShowBreaks
  1627. cShowClipboard
  1628. cShowFullSize
  1629. cStyleChange
  1630. cTraceIdle
  1631. cTraceSetupMenus
  1632. cTrackingControl
  1633. cTyping
  1634. cUndo
  1635. cVarClipPicSize
  1636. errAppTable
  1637. errFileChanged
  1638. errFTypeChanged
  1639. errNoPrintDrvr
  1640. errNotImplemented
  1641. errNotMyType
  1642. errOperationsID
  1643. errReasonID
  1644. errRecoveryID
  1645. errRevertFNF
  1646. errSaveAgain
  1647. errSpooling
  1648. hlDim
  1649. hlDimOff
  1650. hlDimOn
  1651. hlOff
  1652. hlOffDim
  1653. hlOffOn
  1654. hlOn
  1655. hlOnDim
  1656. hlOnOff
  1657. kAdorn
  1658. kAEqualB
  1659. kAGreaterThanB
  1660. kALessThanB
  1661. kAllocationIncrement
  1662. kAllowApplicationToSleep
  1663. kApplFontName
  1664. kAskForFilename
  1665. kAutoWrap
  1666. kBuild
  1667. kClearVirtualCode
  1668. kCode
  1669. kControlOn
  1670. kCopyright
  1671. kDataOpen
  1672. kDebugBuzzStrings
  1673. kDebugFont
  1674. kDebugParamsID
  1675. kDebugSize
  1676. kDefaultCredits
  1677. kDefaultViewID
  1678. kDefaultWindowID
  1679. kDeSelect
  1680. kDontAdorn
  1681. kDontAlign
  1682. kDontExtend
  1683. kDontFlash
  1684. kDontHighlight
  1685. kDontInvalidate
  1686. kDontRedraw
  1687. kEmptyIndex
  1688. kEraseFirst
  1689. kErrorHandled
  1690. kEscapeVirtualCode
  1691. kExtend
  1692. kF10VirtualCode
  1693. kF11VirtualCode
  1694. kF12VirtualCode
  1695. kF13VirtualCode
  1696. kF14VirtualCode
  1697. kF15VirtualCode
  1698. kF1VirtualCode
  1699. kF2VirtualCode
  1700. kF3VirtualCode
  1701. kF4VirtualCode
  1702. kF5VirtualCode
  1703. kF6VirtualCode
  1704. kF7VirtualCode
  1705. kF8VirtualCode
  1706. kF9VirtualCode
  1707. kFailAbstract
  1708. kFailCoercion
  1709. kFailMethNotFound
  1710. kFailNone
  1711. kFixedSize
  1712. kFlash
  1713. kForceDepth
  1714. kForDisplay
  1715. kForPrinting
  1716. kFrame
  1717. kFwdDelVirtualCode
  1718. kGZMaxAlloc
  1719. kHexDigits
  1720. kHighlight
  1721. kHMargin
  1722. kIDBuzzString
  1723. kIDClipView
  1724. kIDClipWindow
  1725. kIDDefaultView
  1726. kIDMNTBbyCmdNumber
  1727. kInvalidate
  1728. kInvalidObj
  1729. kInvalidValue
  1730. kInvalidValueReasons
  1731. kInvisible
  1732. kItem1EqualItem2
  1733. kItem1GreaterThanItem2
  1734. kItem1LessThanItem2
  1735. kItemEqualCriteria
  1736. kItemGreaterThanCriteria
  1737. kItemLessThanCriteria
  1738. kIterateBackward
  1739. kIterateForward
  1740. kLeftPalette
  1741. kLMApFontID
  1742. kLMmapFalse
  1743. kLMmapTrue
  1744. kLMSysFontFam
  1745. kLMSysFontSize
  1746. kLMTESysJust
  1747. kLowSpaceInterval
  1748. kMakingCopy
  1749. kMANameSize
  1750. kMaxCoord
  1751. kMaxFlags
  1752. kMaxIdleTime
  1753. kMaxSignatures
  1754. kMaxSyms
  1755. kMaxTEWidth
  1756. kMBarDisplayed
  1757. kMBarHierarchical
  1758. kMBarNotDisplayed
  1759. kMinAhead
  1760. kMNTBbyCmdNumber
  1761. kMouseMovedMessage
  1762. kMoveBAbsolute
  1763. kMoveLAbsolute
  1764. kMoveLImmed
  1765. kMoveWAbsolute
  1766. kNeverInitialized
  1767. kNilClass
  1768. kNoAutoWrap
  1769. kNoButton
  1770. kNoEraseFirst
  1771. kNoFileRefnum
  1772. kNoIdentifier
  1773. kNonNumericCharacters
  1774. kNoOfDefaultReasons
  1775. kNoResource
  1776. kNoSpaceForCaret
  1777. kNoStaticLink
  1778. kNoTemplate
  1779. kPreferColor
  1780. kPrintDriverName
  1781. kPrintInfoSize
  1782. kPriorityHigh
  1783. kPriorityHighest
  1784. kPriorityLow
  1785. kPriorityLowest
  1786. kPriorityNormal
  1787. kRedraw
  1788. kRsrcCheckInterval
  1789. kRsrcFileOverhead
  1790. kRsrcOpen
  1791. kRsrcOverhead
  1792. kRsrcTypeOverhead
  1793. kSaveCurrentChars
  1794. kSBarSize
  1795. kSBarSizeMinus1
  1796. kScrollBarId
  1797. kSelect
  1798. kShowCantUndo
  1799. kShowRedo
  1800. kShowUndo
  1801. kSpaceForCaret
  1802. kSquareDots
  1803. kStdButton
  1804. kStdCheckBox
  1805. kStdCluster
  1806. kStdControl
  1807. kStdDefaultView
  1808. kStdDialogView
  1809. kStdDocument
  1810. kStdEditText
  1811. kStdGridView
  1812. kStdIcon
  1813. kStdList
  1814. kStdMainFileType
  1815. kStdNumberText
  1816. kStdPattern
  1817. kStdPicture
  1818. kStdPopup
  1819. kStdRadio
  1820. kStdScroller
  1821. kStdScrollUnit
  1822. kStdSScrollBar
  1823. kStdStaggerAmount
  1824. kStdStaticText
  1825. kStdSzMinus1SBar
  1826. kStdSzSBar
  1827. kStdTEView
  1828. kStdTextGridView
  1829. kStdTextListView
  1830. kStdTracker
  1831. kStdView
  1832. kStdWindow
  1833. kSuspendOrResume
  1834. kSwitchToTarget
  1835. kSysClear
  1836. kSysCopy
  1837. kSysCut
  1838. kSysFontName
  1839. kSysPaste
  1840. kSysUndo
  1841. kTooManyCharacters
  1842. kTopPalette
  1843. kUnlimited
  1844. kUsesDataFork
  1845. kUsesRsrcFork
  1846. kUsualPages
  1847. kValidValue
  1848. kValueTooLarge
  1849. kValueTooSmall
  1850. kViewRsrcExpandAmt
  1851. kVisible
  1852. kVMargin
  1853. kWantHScrollBar
  1854. kWantVScrollBar
  1855. kWatchDelay
  1856. kWithoutStyle
  1857. kWithStyle
  1858. kWordAlign
  1859. kWWEol
  1860. kYesButton
  1861. mApple
  1862. maxErr
  1863. mButtonHit
  1864. mCancelHit
  1865. mCancelKey
  1866. mCheckBoxHit
  1867. mClusterHit
  1868. mControlHit
  1869. mDebug
  1870. mDefaultKey
  1871. mEdit
  1872. mEditEnterKey
  1873. mEditReturnKey
  1874. mEditTabKey
  1875. mEditTextHit
  1876. mFile
  1877. mHScrollBarHit
  1878. mIconHit
  1879. minErr
  1880. mLastMenu
  1881. mListItemHit
  1882. mListScrollBarHit
  1883. mOKHit
  1884. mPatternHit
  1885. mPictureHit
  1886. mPopupHit
  1887. mRadioHit
  1888. msgAlert
  1889. msgAltRecovery
  1890. msgCancelled
  1891. msgCmdErr
  1892. msgDrawFailed
  1893. msgExportClipFailed
  1894. msgImportClipFailed
  1895. msgInitFailed
  1896. msgLookup
  1897. msgNewFailed
  1898. msgOpenFailed
  1899. msgPrintFailed
  1900. msgRevertFailed
  1901. msgSaveAsFailed
  1902. msgSaveCopyFailed
  1903. msgSaveFailed
  1904. msgStrList
  1905. mStaticTextHit
  1906. mVScrollBarHit
  1907. phAboutApp
  1908. phCmdErr
  1909. phFileChanged
  1910. phFinderPrintDialog
  1911. phGenError
  1912. phInvalidValue
  1913. phNoPages
  1914. phOfferReadOnly
  1915. phPurgeOld
  1916. phReopenDoc
  1917. phRevert
  1918. phSaveChanges
  1919. phSpaceIsLow
  1920. phSpoolPrintDialog
  1921. phStylesTooBig
  1922. phTooManyChars
  1923. phUnimplemented
  1924. phUnknownErr
  1925. phUnsupportedConfiguration
  1926. phWhichDoc
  1927.  
  1928.  
  1929. -- part contents for background part 12
  1930. ----- text -----
  1931. %_CLASSINFO
  1932. %_DISCIPLINEDISPATCH
  1933. %_DISCIPLIN...PATCHPOINT
  1934. %_EP
  1935. %_EX
  1936. %_INITOBJ
  1937. %_INOBJ
  1938. %_JMPTOTRAP
  1939. %_METHOD
  1940. %_NewMethod
  1941. %_OBCHK
  1942. %_OBDISP
  1943. %_ObjError
  1944. %_OBNEW
  1945. %_OptInitObj
  1946. %_OPTINOBJ
  1947. %_OptSetCI
  1948. %_PGM1
  1949. _addDevHandler
  1950. _DataInit
  1951. ActionProcForTScrollBar
  1952. AddAllRsrc
  1953. AddHandle
  1954. AddNewObjectsToInspector
  1955. AddObjectToInspector
  1956. AddSegSizes
  1957. AddVPt
  1958. AllocateObjectsFromPerm
  1959. AllocBlock
  1960. ALoadMacAppSeg
  1961. APostLoadMacAppSeg
  1962. ApplicationBeep
  1963. Assertion
  1964. AtMAName
  1965. AtStr
  1966. aVBLTask
  1967. AWatchTask
  1968. BlockSet
  1969. BuildAllReserves
  1970. BuildCodeReserve
  1971. BuildMessage
  1972. BusyActivate
  1973. BusyDelay
  1974. BusyInstall
  1975. BusyRemove
  1976. BusyReset
  1977. BusyTurnOff
  1978. CallAlertFilter
  1979. CallCapture
  1980. CallEnter
  1981. CallFileFilter
  1982. CallFlagActionProc
  1983. CallHelpProc
  1984. CallInspector
  1985. CallNotify
  1986. CallSymActionProc
  1987. CallSymbolLookup
  1988. CallWDefProc
  1989. CanPaste
  1990. CanReadLn
  1991. CanWriteLn
  1992. CatchFailures
  1993. CenterRectOnScreen
  1994. CheckFreeMasters
  1995. CheckReserve
  1996. CheckRsrcUsage
  1997. CleanupMacApp
  1998. ClearTheFPU
  1999. ClickLoopForTTEView
  2000. CloseFile
  2001. ClrBreakCmd
  2002. CmdEnabled
  2003. CmdFromMenuItem
  2004. CmdToComponents
  2005. CmdToMenuItem
  2006. CmdToName
  2007. CompareStrings
  2008. ConcatNumber
  2009. ConfigRecFields
  2010. CopyStr255
  2011. CurrentCursor
  2012. DebugCanReadLn
  2013. DebugCanWriteLn
  2014. DebugCapture
  2015. DebugEndForce
  2016. DebugException
  2017. DebugFlag
  2018. DebugForceOutput
  2019. DebugGetActiveDocument
  2020. DebugGetActiveWindow
  2021. DebugGetLastCommand
  2022. DebugGlobalHandle
  2023. DebugPerfMonitor
  2024. DebugReadCh
  2025. DebugReadLn
  2026. DebugRedirect
  2027. DebugShowTranscriptWindow
  2028. DebugTerminate
  2029. DebugTranscriptWidth
  2030. DebugWriteLn
  2031. DefaultSize
  2032. DefineConfiguration
  2033. DeleteFile
  2034. DevClose
  2035. DevFAccess
  2036. DevIoctl
  2037. DevRead
  2038. DevWrite
  2039. DisciplineMethodCalls
  2040. DisposeIfHandle
  2041. DisposeIfPtr
  2042. DisposIfHandle
  2043. DisposIfPtr
  2044. DoChangeReserve
  2045. DoFailure
  2046. DoInitUMacApp
  2047. DoInitUMemory
  2048. DoneViewRsrc
  2049. DoneWithTempRgn
  2050. DoRealInitToolBox
  2051. DoShowAboutAppFilter
  2052. DoToSubView
  2053. DoWaiting
  2054. DumpTERecord
  2055. DumpTTECommand
  2056. EachClassDo
  2057. EachFailureHandlerDo
  2058. EachFrameDo
  2059. EachMenuDo
  2060. EachPatchDo
  2061. EachSubClassDo
  2062. EachSuperClassDo
  2063. EachWMgrWindowDo
  2064. EmptyVRect
  2065. Enable
  2066. EnableCheck
  2067. EntDebugger
  2068. EnterMacAppDebugger
  2069. EqualBlocks
  2070. EqualVPt
  2071. EqualVRect
  2072. ErrorAlert
  2073. ExchangeHandles
  2074. ExitMacApp
  2075. ExpandPtr
  2076. ExpandPtrWStr
  2077. FailMemError
  2078. FailNewMessage
  2079. FailNIL
  2080. FailNILResource
  2081. FailNonObject
  2082. FailNoReserve
  2083. FailOSErr
  2084. FailResError
  2085. FailSpaceIsLow
  2086. Failure
  2087. FieldToString
  2088. FileModDate
  2089. FillInDirID
  2090. FinderSegProc
  2091. FindWindowBefore
  2092. ForceBusy
  2093. FreeIfObject
  2094. FreeIfWMgrWindow
  2095. FreeListIfObject
  2096. FreeObject
  2097. FreeWMgrWindow
  2098. GetA5
  2099. GetActualJustification
  2100. GetAndLoadWDefProc
  2101. GetCallersMethodName
  2102. GetClassID
  2103. GetClassIDFromName
  2104. GetClassNameFromID
  2105. GetClassSizeFromId
  2106. GetCrsrBusy
  2107. GetCurJTOffset
  2108. GetCurStackBase
  2109. GetCurStackFramePtr
  2110. GetCurStackTop
  2111. GetDirID
  2112. GetErrTxt
  2113. GetFileInfo
  2114. GetFocus
  2115. GetFontNum
  2116. GetFrameInfo
  2117. GetFreeMastersCount
  2118. GetFSFCBLen
  2119. GetGZMoveHnd
  2120. GetGZRootHnd
  2121. GetHandleBits
  2122. GetHwCfgFlags
  2123. GetIfBkColor
  2124. GetIfColor
  2125. GetLevel
  2126. GetLMMBarHeight
  2127. GetMenuColors
  2128. GetMenuList
  2129. GetMethodName
  2130. GetNewCenteredDialog
  2131. GetParmBlockPtr
  2132. GetPortFontInfo
  2133. GetPortTextStyle
  2134. GetProcName
  2135. GetPromptedChar
  2136. GetPromptedNames
  2137. GetPromptedNumber
  2138. GetPromptedNumberW...Default
  2139. GetPromptedString
  2140. GetPromptedStringWithDefault
  2141. GetPromptedValue
  2142. GetRcvrAtLevel
  2143. GetReserveSize
  2144. GetResLoad
  2145. GetResMenu
  2146. GetROMMapInsert
  2147. GetSaveVisRgnPtr
  2148. GetSegFromPC
  2149. GetSegNumber
  2150. GetSegResource
  2151. GetSegSize
  2152. GetSuperClassID
  2153. GetSuperClassTableHandle
  2154. GetTextStyleFontInfo
  2155. GetTheCrsr
  2156. GetTrapType
  2157. GetUnitNtryCnt
  2158. GetUTableBase
  2159. GetWindowList
  2160. GetWindowVariant
  2161. GrowZoneProc
  2162. HandleIsEligible
  2163. HandlerExists
  2164. HdlInitFailed
  2165. Head1Patch
  2166. HeadPatch
  2167. HeapCmd
  2168. IdleProcForTStdPrintHandler
  2169. IDUDebug
  2170. IDUobject
  2171. IDUTranscriptView
  2172. InitializationThatMustNotFail
  2173. InitMacAppCursor
  2174. InitPrinting
  2175. InitToolBox
  2176. InitUBusyCursor
  2177. InitUDebug
  2178. InitUDebugAfterIApplication
  2179. InitUDialog
  2180. InitUGridView
  2181. InitUInspector
  2182. InitUMacApp
  2183. InitUMemory
  2184. InitUMenuSetup
  2185. InitUObject
  2186. InitUPatch
  2187. InitUPrinting
  2188. InitUTEView
  2189. InsetVRect
  2190. InspectField
  2191. InspectObject
  2192. InstallAnNMRequest
  2193. InstallDispatcher
  2194. InstallGrowZoneProc
  2195. InstallIfPrintHandler
  2196. InstallInterceptors
  2197. InstallWriteLnHook
  2198. IntMultiply
  2199. InvalidateMenuBar
  2200. InvalidateMenus
  2201. IsClassIDMemberClass
  2202. IsFreeHandle
  2203. IsHandle
  2204. IsHandleLocked
  2205. IsHandlePurged
  2206. IsMemberClassID
  2207. IsObject
  2208. IsUserBreak
  2209. JTOffProc
  2210. LengthRect
  2211. LengthVRect
  2212. LIntToHex
  2213. LoadMacAppSegment
  2214. LoadResidentSegments
  2215. LockHandleHigh
  2216. LongerSide
  2217. LookupErrString
  2218. LookupSymbol
  2219. LowerChar
  2220. LowerStr255
  2221. MacAppAlert
  2222. MacAppAlertFilter
  2223. MACount1Resources
  2224. MACountResources
  2225. MADebuggerMainEntry
  2226. MADrawString
  2227. MAGet1IndResource
  2228. MAGet1NamedResource
  2229. MAGet1Resource
  2230. MAGetIndResource
  2231. MAGetMenu
  2232. MAGetNamedResource
  2233. MAGetNewMBar
  2234. MAGetResource
  2235. MainHelpProc
  2236. MAInsertMenu
  2237. MAInvalMenuBar
  2238. MakeInspector
  2239. MakeInspectorWindow
  2240. MakeNewInstance
  2241. MakeNewRgn
  2242. MAOpenFile
  2243. MATextBox
  2244. MAUseResFile
  2245. Max
  2246. MemSpaceIsLow
  2247. MenuBarHasPendingUpdate
  2248. MenusHavePendingUpdate
  2249. Min
  2250. MinMax
  2251. NeedCalcMenuSize
  2252. NewAllocatedList
  2253. NewList
  2254. NewObjectByClassId
  2255. NewObjectByClassName
  2256. NewPaletteWindow
  2257. NewPermHandle
  2258. NewPermPtr
  2259. NewSimpleWindow
  2260. NewSortedList
  2261. NewStdObject
  2262. NewTemplateWindow
  2263. NewTWindow
  2264. NewViewRsrc
  2265. NotYetImplemented
  2266. NullMenuProc
  2267. NumberToHex
  2268. NumBlocks
  2269. NumToolboxTraps
  2270. OBJFail
  2271. OffsetPtr
  2272. OffsetPtrWStr
  2273. OffsetVRect
  2274. OptionKeyIsDown
  2275. OrderClassIdsByName
  2276. ParseTitleTemplate
  2277. PatchTrap
  2278. PerfCmd
  2279. PerformMenuSetup
  2280. PermAllocation
  2281. PinOnRect
  2282. PinVRect
  2283. PointerToHex
  2284. PositionDebugWindow
  2285. PostLoadMacAppSegment
  2286. PreloadSegment
  2287. PreloadSegmentResource
  2288. ProgramBreak
  2289. ProgramReport
  2290. PRStr
  2291. Pt2VRect
  2292. PtInVRect
  2293. PtIsVisible
  2294. PtToVPt
  2295. PullApplicationToFront
  2296. PushLong
  2297. PutDeskScrapData
  2298. ReadInteger
  2299. ReadYesNo
  2300. RectIsVisible
  2301. RectsNest
  2302. RectToVRect
  2303. RegisterStdType
  2304. RemHandle
  2305. RemoveAnyNMRequests
  2306. RemoveObjectFromInspector
  2307. ResetBusyCursor
  2308. RoundUp
  2309. SaveEventQueue
  2310. ScanHandles
  2311. ScrapStuffFields
  2312. SectVRect
  2313. SetBreakCmd
  2314. SetCallBack
  2315. SetCMacAppCursor
  2316. SetCmdIcon
  2317. SetCmdName
  2318. SetFocus
  2319. SetGetProc
  2320. SetHandleBits
  2321. SetHLPenState
  2322. SetIfBkColor
  2323. SetIfColor
  2324. SetIndCmdName
  2325. SetKeyScript
  2326. SetMacAppCursor
  2327. SetMenuState
  2328. SetPermHandleSize
  2329. SetPermPtrSize
  2330. SetPortTextStyle
  2331. SetPutProc
  2332. SetReserveSize
  2333. SetResidentSegment
  2334. SetRGBColor
  2335. SetSelect
  2336. SetStackSpace
  2337. SetStyle
  2338. SetTextStyle
  2339. SetVPt
  2340. SetVRect
  2341. ShowDisasmMemory
  2342. ShowFields
  2343. ShowHeapInfo
  2344. ShowHierarchy
  2345. ShowLocals
  2346. ShowMemory
  2347. ShowNames
  2348. ShowParameters
  2349. ShowRecent
  2350. ShowStack
  2351. ShowStatus
  2352. ShowSymbolWhich
  2353. ShowTempSpace
  2354. ShowWhere
  2355. ShowWhich
  2356. StdAlert
  2357. StdFieldToString
  2358. StdHelpProc
  2359. StdNoRect
  2360. StripLong
  2361. SubstituteInTitle
  2362. SubVPt
  2363. Success
  2364. TestRecoverHandle
  2365. TextStyleFields
  2366. ToggleCmd
  2367. TotalTempSize
  2368. TraceMenuName
  2369. TrapExists
  2370. TrcEnable
  2371. UnionVRect
  2372. UnloadAllSegments
  2373. UnpatchAll
  2374. UnpatchTrap
  2375. UprChar
  2376. UprMAName
  2377. UprStr255
  2378. UseROMMap
  2379. UseSelectionColor
  2380. UseTempRgn
  2381. ValidateConfiguration
  2382. ValidateMenuBar
  2383. ValidateMenus
  2384. VBLInstall
  2385. VBLRemove
  2386. VerboseIsHandle
  2387. VerboseIsObject
  2388. VisibleRect
  2389. VPtToPt
  2390. VRectsNest
  2391. VRectToRect
  2392. WindCmd
  2393. WithApplicationResFileDo
  2394. WithCodeResFileDo
  2395. WithHideFromMacAppDo
  2396. WriteBoolean
  2397. WriteChar
  2398. WriteFocus
  2399. WriteHandleContents
  2400. WriteHexInt
  2401. WriteHexLongint
  2402. WritePt
  2403. WritePtr
  2404. WriteRect
  2405. WriteReserves
  2406. WriteSig
  2407. WriteVPt
  2408. WriteVRect
  2409. WrLblBoolean
  2410. WrLblField
  2411. WrLblHandleContents
  2412. WrLblHexInt
  2413. WrLblHexLongint
  2414. WrLblPt
  2415. WrLblPtr
  2416. WrLblRect
  2417. WrLblSig
  2418. WrLblVPt
  2419. WrLblVRect
  2420. XDebugAddrError
  2421. XDebugBusError
  2422. XDebugCheck
  2423. XDebugIllInst
  2424. XDebugLineF
  2425. XDebugOverflow
  2426. XDebugSysError
  2427. XDebugZeroDiv
  2428. YouAreWarned
  2429.